home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Business Master (3rd Edition)
/
The Business Master (3rd Edition).iso
/
files
/
utilstem
/
util3
/
util3.arc
/
WIPE.BAT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
DOS Batch File
|
1988-10-27
|
334 b
|
18 lines
ECHO OFF
CLS
IF "%1" == "" GOTO HELP
ECHO The file %1 is about to be permanently deleted!!
ECHO to exit press [CTRL-BREAK] or
PAUSE
DEL %1
COPY WIPE.DAT %1 > NUL
DEL %1
ECHO %1 deleted
GOTO END
:HELP
ECHO To permanently delete a file, type
ECHO WIPE name
ECHO Where name is the file you wish to wipe
:END